From dd0d21ac295e31959b5c4612a0b1a5f1588e29cc Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Mon, 20 Feb 2006 15:18:38 +0000 Subject: [PATCH] Fix loading binary kernel images. Starting a domain with a binary kernel image fails due to an uninitialized field. This patch fixes that problem. The Novell NetWare port to Xen 3.0 currently uses the binary image loader. Signed-off-by: Bruce Rogers --- tools/libxc/xc_load_bin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxc/xc_load_bin.c b/tools/libxc/xc_load_bin.c index e92ca69cdd..4c771abbb8 100644 --- a/tools/libxc/xc_load_bin.c +++ b/tools/libxc/xc_load_bin.c @@ -231,6 +231,7 @@ static int parsebinimage(char *image, dsi->v_kernstart = dsi->v_start; dsi->v_kernend = dsi->v_end; dsi->v_kernentry = image_info->entry_addr; + dsi->xen_guest_string = ""; return 0; } -- 2.30.2